Skip to content

Commit 87e95eb

Browse files
debug: Fixing build_runner failing error
1 parent fc74293 commit 87e95eb

26 files changed

+21528
-21289
lines changed

assets/icons/ZulipIcons.ttf

136 Bytes
Binary file not shown.

assets/icons/video.svg

Lines changed: 1 addition & 0 deletions
Loading

assets/l10n/app_en.arb

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -570,6 +570,10 @@
570570
"@composeBoxAttachFromCameraTooltip": {
571571
"description": "Tooltip for compose box icon to attach an image from the camera to the message."
572572
},
573+
"composeBoxAttachFromVideoCallTooltip": "Attach a video call",
574+
"@composeBoxAttachFromVideoCallTooltip": {
575+
"description": "Tooltip for compose box icon to attach a video call url to the message."
576+
},
573577
"composeBoxGenericContentHint": "Type a message",
574578
"@composeBoxGenericContentHint": {
575579
"description": "Hint text for content input when sending a message."
@@ -650,6 +654,10 @@
650654
"filename": {"type": "String", "example": "file.txt"}
651655
}
652656
},
657+
"composeBoxUploadedVideoCallUrl": "Join video call.",
658+
"@composeBoxUploadedVideoCallUrl": {
659+
"description": "Placeholder in compose box showing the video call url is generated."
660+
},
653661
"composeBoxLoadingMessage": "(loading message {messageId})",
654662
"@composeBoxLoadingMessage": {
655663
"description": "Placeholder in compose box showing the quoted message is currently loading.",

lib/api/model/initial_snapshot.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,8 @@ class InitialSnapshot {
8888
/// Search for "realm_wildcard_mention_policy" in https://zulip.com/api/register-queue.
8989
final RealmWildcardMentionPolicy realmWildcardMentionPolicy;
9090

91+
final int realmVideoChatProvider;
92+
9193
final bool realmMandatoryTopics;
9294

9395
final String realmName;
@@ -113,6 +115,8 @@ class InitialSnapshot {
113115

114116
final Map<String, RealmDefaultExternalAccount> realmDefaultExternalAccounts;
115117

118+
final String? jitsiServerUrl;
119+
116120
final int maxFileUploadSizeMib;
117121

118122
final Uri serverEmojiDataUrl;
@@ -181,6 +185,7 @@ class InitialSnapshot {
181185
required this.realmDeleteOwnMessagePolicy,
182186
required this.realmWildcardMentionPolicy,
183187
required this.realmMandatoryTopics,
188+
required this.realmVideoChatProvider,
184189
required this.realmName,
185190
required this.realmWaitingPeriodThreshold,
186191
required this.realmMessageContentDeleteLimitSeconds,
@@ -190,6 +195,7 @@ class InitialSnapshot {
190195
required this.realmIconUrl,
191196
required this.realmPresenceDisabled,
192197
required this.realmDefaultExternalAccounts,
198+
required this.jitsiServerUrl,
193199
required this.maxFileUploadSizeMib,
194200
required this.serverEmojiDataUrl,
195201
required this.realmEmptyTopicDisplayName,

lib/api/model/initial_snapshot.g.dart

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)