From 0605e1fa143aeee3f63f389748554c4dd69316dd Mon Sep 17 00:00:00 2001 From: Artyom Savchenko Date: Tue, 13 May 2025 17:32:52 +0700 Subject: [PATCH 1/4] QFix: Add external ws for gmail (#8910) Signed-off-by: Artem Savchenko --- services/gmail/pod-gmail/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/gmail/pod-gmail/package.json b/services/gmail/pod-gmail/package.json index 14049289a2..b422420290 100644 --- a/services/gmail/pod-gmail/package.json +++ b/services/gmail/pod-gmail/package.json @@ -14,7 +14,7 @@ "build": "compile", "build:watch": "compile", "test": "jest --passWithNoTests --silent", - "_phase:bundle": "rushx bundle", + "_phase:bundle": "rushx bundle --external=ws", "_phase:docker-build": "rushx docker:build", "_phase:docker-staging": "rushx docker:staging", "bundle": "node ../../../common/scripts/esbuild.js --external=ws", From 13eb029644b0da401e4b02f1e4b7fa45545fa553 Mon Sep 17 00:00:00 2001 From: Alexander Onnikov Date: Tue, 13 May 2025 22:27:35 +0700 Subject: [PATCH 2/4] fix: close room popup on stop share (#8914) Signed-off-by: Alexander Onnikov --- plugins/love-resources/src/components/RoomPopup.svelte | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/love-resources/src/components/RoomPopup.svelte b/plugins/love-resources/src/components/RoomPopup.svelte index 58aee3fca4..1714948bf0 100644 --- a/plugins/love-resources/src/components/RoomPopup.svelte +++ b/plugins/love-resources/src/components/RoomPopup.svelte @@ -108,6 +108,7 @@ const newValue = !$isSharingEnabled const audio = newValue && $isShareWithSound await setShare(newValue, audio) + dispatch('close') } async function leave (): Promise { From d1a338d31303c50b1ed6d37332f54096f56ec1f7 Mon Sep 17 00:00:00 2001 From: Alexander Onnikov Date: Tue, 13 May 2025 23:06:59 +0700 Subject: [PATCH 3/4] UBERF-10567 Enhance attachments view in chat (#8915) Signed-off-by: Alexander Onnikov --- .../src/components/AttachmentList.svelte | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/plugins/attachment-resources/src/components/AttachmentList.svelte b/plugins/attachment-resources/src/components/AttachmentList.svelte index c9eee5fc5d..04dc1a1e4c 100644 --- a/plugins/attachment-resources/src/components/AttachmentList.svelte +++ b/plugins/attachment-resources/src/components/AttachmentList.svelte @@ -16,7 +16,7 @@ import { Attachment } from '@hcengineering/attachment' import { Ref, type WithLookup } from '@hcengineering/core' import { ListSelectionProvider } from '@hcengineering/view-resources' - import { Scroller, updatePopup } from '@hcengineering/ui' + import { updatePopup } from '@hcengineering/ui' import { AttachmentImageSize } from '../types' import AttachmentPreview from './AttachmentPreview.svelte' @@ -43,7 +43,7 @@ {#if attachments.length} - + {/if} + + From c7847a035cb262dc0e513c8743787d3d559f457d Mon Sep 17 00:00:00 2001 From: Victor Ilyushchenko Date: Wed, 14 May 2025 06:08:51 +0300 Subject: [PATCH 4/4] Improved URL-to-reference conversion (#8916) Signed-off-by: Victor Ilyushchenko --- .../AttachmentStyleBoxCollabEditor.svelte | 12 +++--- .../AttachmentStyleBoxEditor.svelte | 9 ++-- .../src/components/Description.svelte | 7 +--- .../components/document/EditDocContent.svelte | 38 ++++++++--------- .../src/components/EditDoc.svelte | 10 ++--- .../src/components/extension/reference.ts | 42 +++++++++++++++---- .../src/components/Workbench.svelte | 5 ++- 7 files changed, 71 insertions(+), 52 deletions(-) diff --git a/plugins/attachment-resources/src/components/AttachmentStyleBoxCollabEditor.svelte b/plugins/attachment-resources/src/components/AttachmentStyleBoxCollabEditor.svelte index ee3052880d..7fc8547f40 100644 --- a/plugins/attachment-resources/src/components/AttachmentStyleBoxCollabEditor.svelte +++ b/plugins/attachment-resources/src/components/AttachmentStyleBoxCollabEditor.svelte @@ -13,6 +13,7 @@ // limitations under the License. -->