Skip to content

Commit

Permalink
Update to Element v1.11.88
Browse files Browse the repository at this point in the history
  • Loading branch information
SpiritCroc committed Dec 17, 2024
1 parent 59fab59 commit 240975c
Show file tree
Hide file tree
Showing 30 changed files with 82 additions and 82 deletions.
2 changes: 1 addition & 1 deletion element-web
Submodule element-web updated 709 files
2 changes: 1 addition & 1 deletion matrix-js-sdk
Submodule matrix-js-sdk updated 91 files
+1 −0 .eslintrc.cjs
+4 −4 .github/PULL_REQUEST_TEMPLATE.md
+2 −0 .github/workflows/pull_request.yaml
+38 −0 .github/workflows/release-checks.yml
+5 −52 .github/workflows/release-make.yml
+35 −1 .github/workflows/release.yml
+2 −2 .github/workflows/sonarcloud.yml
+1 −1 .github/workflows/tests.yml
+31 −0 CHANGELOG.md
+25 −23 README.md
+3 −3 docs/SUMMARY.md
+27 −27 docs/storage-notes.md
+8 −8 docs/warning-on-unverified-devices.md
+6 −6 package.json
+5 −5 spec/integ/crypto/crypto.spec.ts
+2 −2 spec/integ/crypto/olm-encryption-spec.ts
+30 −15 spec/integ/crypto/verification.spec.ts
+1 −1 spec/integ/devicelist-integ.spec.ts
+6 −6 spec/integ/matrix-client-event-timeline.spec.ts
+57 −26 spec/integ/matrix-client-methods.spec.ts
+166 −7 spec/integ/matrix-client-syncing.spec.ts
+1 −1 spec/integ/matrix-client-unread-notifications.spec.ts
+7 −9 spec/integ/sliding-sync-sdk.spec.ts
+2 −2 spec/test-utils/test-utils.ts
+1 −1 spec/test-utils/thread.ts
+3 −0 spec/test-utils/webrtc.ts
+1 −25 spec/unit/base64.spec.ts
+16 −16 spec/unit/crypto.spec.ts
+10 −6 spec/unit/crypto/algorithms/megolm.spec.ts
+8 −8 spec/unit/crypto/backup.spec.ts
+1 −1 spec/unit/crypto/cross-signing.spec.ts
+1 −1 spec/unit/crypto/dehydration.spec.ts
+1 −1 spec/unit/crypto/secrets.spec.ts
+1 −1 spec/unit/crypto/verification/util.ts
+4 −4 spec/unit/embedded.spec.ts
+2 −2 spec/unit/event-mapper.spec.ts
+21 −5 spec/unit/event-timeline-set.spec.ts
+27 −23 spec/unit/event-timeline.spec.ts
+28 −24 spec/unit/matrix-client.spec.ts
+67 −8 spec/unit/matrixrtc/MatrixRTCSession.spec.ts
+6 −6 spec/unit/models/event.spec.ts
+22 −22 spec/unit/models/room-receipts.spec.ts
+1 −1 spec/unit/models/thread.spec.ts
+1 −1 spec/unit/notifications.spec.ts
+4 −4 spec/unit/relations.spec.ts
+0 −55 spec/unit/room-state.spec.ts
+599 −442 spec/unit/room.spec.ts
+49 −9 spec/unit/rust-crypto/rust-crypto.spec.ts
+153 −10 spec/unit/sync-accumulator.spec.ts
+3 −3 spec/unit/timeline-window.spec.ts
+14 −11 spec/unit/webrtc/groupCall.spec.ts
+21 −1 src/@types/global.d.ts
+1 −1 src/autodiscovery.ts
+38 −40 src/base64.ts
+36 −34 src/client.ts
+2 −1 src/common-crypto/CryptoBackend.ts
+1 −0 src/crypto-api/CryptoEventHandlerMap.ts
+10 −0 src/crypto-api/index.ts
+1 −1 src/crypto-api/recovery-key.ts
+3 −3 src/crypto-api/verification.ts
+1 −1 src/crypto/EncryptionSetup.ts
+3 −3 src/crypto/dehydration.ts
+1 −3 src/crypto/index.ts
+2 −2 src/crypto/store/localStorage-crypto-store.ts
+5 −4 src/crypto/verification/request/VerificationRequest.ts
+3 −3 src/digest.ts
+35 −2 src/embedded.ts
+7 −3 src/matrixrtc/MatrixRTCSession.ts
+17 −38 src/models/event-timeline-set.ts
+10 −5 src/models/event-timeline.ts
+8 −6 src/models/event.ts
+4 −2 src/models/relations.ts
+2 −30 src/models/room-state.ts
+20 −8 src/models/room.ts
+4 −2 src/models/thread.ts
+1 −1 src/rust-crypto/backup.ts
+7 −2 src/rust-crypto/libolm_migration.ts
+32 −23 src/rust-crypto/rust-crypto.ts
+5 −5 src/rust-crypto/verification.ts
+8 −11 src/sliding-sync-sdk.ts
+6 −6 src/sliding-sync.ts
+1 −1 src/store/indexeddb.ts
+33 −16 src/sync-accumulator.ts
+113 −45 src/sync.ts
+1 −2 src/testing.ts
+2 −2 src/utils/encryptAESSecretStorageItem.ts
+3 −3 src/webrtc/call.ts
+1 −1 src/webrtc/groupCall.ts
+2 −5 src/webrtc/stats/callFeedStatsReporter.ts
+2 −8 src/webrtc/stats/media/mediaTrackHandler.ts
+196 −402 yarn.lock
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From a90a617e3d49a8d14fe59ab992e9a902aeec87b8 Mon Sep 17 00:00:00 2001
From e852e912f049e8de45ba1b8b85940c013cae565c Mon Sep 17 00:00:00 2001
From: SpiritCroc <dev@spiritcroc.de>
Date: Sat, 2 Dec 2023 12:57:26 +0100
Subject: Add back schildi fetch-package.ts modifications
Expand Down Expand Up @@ -58,5 +58,5 @@ index 7282945..4be7ab0 100644
if (!haveDeploy) {
const outPath = path.join(pkgDir, filename);
--
2.47.0
2.47.1

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 7ef218c37ebb202226f4b6d21a150e75ef1e8e04 Mon Sep 17 00:00:00 2001
From 965beab555a1383ef6c08ce277e412f67309da74 Mon Sep 17 00:00:00 2001
From: su-ex <codeworks@supercable.onl>
Date: Sun, 29 Nov 2020 23:30:59 +0100
Subject: Change default login background
Expand Down Expand Up @@ -22117,7 +22117,7 @@ index 2782d0a641..032744413f 100644
const configuredUrl = brandingConfig?.get("welcome_background_url");
if (configuredUrl) {
diff --git a/src/components/views/settings/tabs/user/HelpUserSettingsTab.tsx b/src/components/views/settings/tabs/user/HelpUserSettingsTab.tsx
index 7866131a01..4f57acb3d0 100644
index f19343be20..f36fc9205b 100644
--- a/src/components/views/settings/tabs/user/HelpUserSettingsTab.tsx
+++ b/src/components/views/settings/tabs/user/HelpUserSettingsTab.tsx
@@ -119,7 +119,7 @@ export default class HelpUserSettingsTab extends React.Component<IProps, IState>
Expand All @@ -22130,5 +22130,5 @@ index 7866131a01..4f57acb3d0 100644
target="_blank"
>
--
2.47.0
2.47.1

4 changes: 2 additions & 2 deletions patches/element-web/0003-Don-t-welcome-to-Element.patch
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 777d4917cd8e0db3f977804b2ac8428453fc9270 Mon Sep 17 00:00:00 2001
From cb662054cd3a82edbca312166497f9e7ca16b169 Mon Sep 17 00:00:00 2001
From: SpiritCroc <dev@spiritcroc.de>
Date: Sun, 27 Oct 2024 19:38:47 +0100
Subject: Don't welcome to Element
Expand All @@ -21,5 +21,5 @@ index ef2d43bd8f..5b71670f4f 100644
<h4 class="mx_Header_subtitle">_t("powered_by_matrix_with_logo")</h4>
<div class="mx_ButtonGroup">
--
2.47.0
2.47.1

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From feb223e69bfb0a44d82dd4c0d0c0555ee5bd2be9 Mon Sep 17 00:00:00 2001
From 8c292e4b7b99e03ba8000f8282167ef504a29bc9 Mon Sep 17 00:00:00 2001
From: SpiritCroc <dev@spiritcroc.de>
Date: Sun, 27 Oct 2024 19:55:30 +0100
Subject: Stronger login background to ensure contrast of our icon with our bg
Expand All @@ -21,5 +21,5 @@ index 032744413f..71bf8ae6d6 100644
};

--
2.47.0
2.47.1

4 changes: 2 additions & 2 deletions patches/element-web/0005-Schildify-login-footer.patch
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 888ec3387af2ba9d79a7cf0affb44fbb75b13771 Mon Sep 17 00:00:00 2001
From d677f1d06e6a79b47cbbf7c892c82b3badf52b24 Mon Sep 17 00:00:00 2001
From: SpiritCroc <dev@spiritcroc.de>
Date: Sun, 27 Oct 2024 20:07:30 +0100
Subject: Schildify login footer
Expand Down Expand Up @@ -26,5 +26,5 @@ index a792896a88..6ecfd6ae20 100644

const authFooterLinks: JSX.Element[] = [];
--
2.47.0
2.47.1

4 changes: 2 additions & 2 deletions patches/element-web/0006-Disable-sticky-rooms.patch
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 72f5f3b18cd813fc3cdc4ff89131558738f8c551 Mon Sep 17 00:00:00 2001
From cffec34134a4a49f0d3880f6ebcd2f4b570d9bab Mon Sep 17 00:00:00 2001
From: SpiritCroc <dev@spiritcroc.de>
Date: Tue, 18 Jan 2022 13:28:22 +0100
Subject: Disable sticky rooms
Expand All @@ -25,5 +25,5 @@ index c3450d70cf..e296676149 100644
}

--
2.47.0
2.47.1

10 changes: 5 additions & 5 deletions patches/element-web/0007-Bring-back-unified-room-list.patch
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 9b0cba9a234d7f9329f9e6e8ad549a09a6455bf1 Mon Sep 17 00:00:00 2001
From c92bef580d7ec6e62a6b845dc3f4159288f58777 Mon Sep 17 00:00:00 2001
From: SpiritCroc <dev@spiritcroc.de>
Date: Sun, 5 May 2024 10:12:17 +0200
Subject: Bring back unified room list
Expand All @@ -16,7 +16,7 @@ Co-authored-by: su-ex <codeworks@supercable.onl>
5 files changed, 83 insertions(+), 5 deletions(-)

diff --git a/src/components/views/rooms/RoomList.tsx b/src/components/views/rooms/RoomList.tsx
index 853bebc4fe..5af0c642bc 100644
index f3bde66af9..f2446d3de8 100644
--- a/src/components/views/rooms/RoomList.tsx
+++ b/src/components/views/rooms/RoomList.tsx
@@ -72,11 +72,13 @@ interface IState {
Expand Down Expand Up @@ -124,10 +124,10 @@ index 853bebc4fe..5af0c642bc 100644
(this.props.activeSpace === MetaSpace.Favourites && orderedTagId !== DefaultTagID.Favourite) ||
(this.props.activeSpace === MetaSpace.People && orderedTagId !== DefaultTagID.DM) ||
diff --git a/src/settings/Settings.tsx b/src/settings/Settings.tsx
index 1c27f03e88..ae4b0ea644 100644
index 6cd5b15a51..4413cc5762 100644
--- a/src/settings/Settings.tsx
+++ b/src/settings/Settings.tsx
@@ -192,6 +192,14 @@ export interface IFeature extends Omit<IBaseSetting<boolean>, "isFeature"> {
@@ -183,6 +183,14 @@ export interface IFeature extends Omit<IBaseSetting<boolean>, "isFeature"> {
export type ISetting = IBaseSetting | IFeature;

export const SETTINGS: { [setting: string]: ISetting } = {
Expand Down Expand Up @@ -259,5 +259,5 @@ index 50cecda665..8efc2d040d 100644
DefaultTagID.Conference,
DefaultTagID.Untagged,
--
2.47.0
2.47.1

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From e515cfeedb25c3bd8afa7363f677cb885d2acab1 Mon Sep 17 00:00:00 2001
From aca9fa0e13d5486df9f5a854f8d7c67ed1544868 Mon Sep 17 00:00:00 2001
From: SpiritCroc <dev@spiritcroc.de>
Date: Sun, 17 Dec 2023 11:11:58 +0100
Subject: Don't sort muted rooms to bottom, I still want to see them.
Expand All @@ -21,5 +21,5 @@ index 67ee1ca084..67dcaa3855 100644

/**
--
2.47.0
2.47.1

8 changes: 4 additions & 4 deletions patches/element-web/0009-Don-t-preview-reactions.patch
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From c38e41947b16518d6f74313b23670e630c9a1af6 Mon Sep 17 00:00:00 2001
From 4003d95314fdaa2efd1d374d8c04e8f6dd07d965 Mon Sep 17 00:00:00 2001
From: SpiritCroc <dev@spiritcroc.de>
Date: Thu, 14 Dec 2023 10:32:10 +0100
Subject: Don't preview reactions
Expand All @@ -8,10 +8,10 @@ Subject: Don't preview reactions
1 file changed, 2 insertions(+)

diff --git a/src/stores/room-list/MessagePreviewStore.ts b/src/stores/room-list/MessagePreviewStore.ts
index e0e06ec980..7ee27f8402 100644
index 2577b2ba23..0df13f33a8 100644
--- a/src/stores/room-list/MessagePreviewStore.ts
+++ b/src/stores/room-list/MessagePreviewStore.ts
@@ -57,10 +57,12 @@ const PREVIEWS: Record<
@@ -55,10 +55,12 @@ const PREVIEWS: Record<
isState: false,
previewer: new StickerEventPreview(),
},
Expand All @@ -25,5 +25,5 @@ index e0e06ec980..7ee27f8402 100644
isState: false,
previewer: new PollStartEventPreview(),
--
2.47.0
2.47.1

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From afc0686a92f5c16a6747d63a5450c0c8c63f9f68 Mon Sep 17 00:00:00 2001
From ad81f3cdccc9c20e09ab4a816016f2387c6bb6a1 Mon Sep 17 00:00:00 2001
From: SpiritCroc <dev@spiritcroc.de>
Date: Wed, 17 Nov 2021 12:50:25 +0100
Subject: Hide the "mute" notification state the same way as the other states
Expand All @@ -11,10 +11,10 @@ way.
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/components/views/rooms/RoomTile.tsx b/src/components/views/rooms/RoomTile.tsx
index 8351c176ff..a12fb141b9 100644
index 7953c5068d..42f7fabb8e 100644
--- a/src/components/views/rooms/RoomTile.tsx
+++ b/src/components/views/rooms/RoomTile.tsx
@@ -305,7 +305,9 @@ export class RoomTile extends React.PureComponent<ClassProps, State> {
@@ -300,7 +300,9 @@ class RoomTile extends React.PureComponent<Props, State> {

// Only show the icon by default if the room is overridden to muted.
// TODO: [FTUE Notifications] Probably need to detect global mute state
Expand All @@ -26,5 +26,5 @@ index 8351c176ff..a12fb141b9 100644

return (
--
2.47.0
2.47.1

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From c490b899efc44fd1de9cb1c7bc4e5cf08916965c Mon Sep 17 00:00:00 2001
From 2ad7d53eb19069b1cc29430b9328b8e7574910a3 Mon Sep 17 00:00:00 2001
From: SpiritCroc <dev@spiritcroc.de>
Date: Fri, 10 May 2024 18:58:32 +0200
Subject: Allow muted rooms to render as unread
Expand All @@ -21,5 +21,5 @@ index 7c281d0d2d..f06be85437 100644
}

--
2.47.0
2.47.1

4 changes: 2 additions & 2 deletions patches/element-web/0012-Increase-default-visible-tiles.patch
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 6c5419a256020fda6907fa770ae1fc8c48a96849 Mon Sep 17 00:00:00 2001
From 9fbca521ae0e6bc4f2b7012dea3c9c04afde2361 Mon Sep 17 00:00:00 2001
From: SpiritCroc <dev@spiritcroc.de>
Date: Sun, 30 Aug 2020 15:33:01 +0200
Subject: Increase default visible tiles
Expand All @@ -21,5 +21,5 @@ index ff60309e08..275b6d330b 100644

public tilesWithPadding(n: number, paddingPx: number): number {
--
2.47.0
2.47.1

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 5105bf1ceb8cadb26b49ff727461ac2a6e2987b9 Mon Sep 17 00:00:00 2001
From f3b655942a115df270927d44caf33a4281bfb787 Mon Sep 17 00:00:00 2001
From: su-ex <codeworks@supercable.onl>
Date: Sun, 26 May 2024 10:43:36 +0200
Subject: Bring back showSpaceDMBadges setting, force-enabled for now
Expand All @@ -12,10 +12,10 @@ Co-authored-by: SpiritCroc <dev@spiritcroc.de>
2 files changed, 30 insertions(+)

diff --git a/src/settings/Settings.tsx b/src/settings/Settings.tsx
index ae4b0ea644..12d9965cf1 100644
index 4413cc5762..3dcb64ced7 100644
--- a/src/settings/Settings.tsx
+++ b/src/settings/Settings.tsx
@@ -199,6 +199,11 @@ export const SETTINGS: { [setting: string]: ISetting } = {
@@ -190,6 +190,11 @@ export const SETTINGS: { [setting: string]: ISetting } = {
default: true,
controller: new ReloadOnChangeController(),
},
Expand Down Expand Up @@ -88,5 +88,5 @@ index 90358f3310..60df05478a 100644
const newValue = SettingsStore.getValue("Spaces.enabledMetaSpaces");
const enabledMetaSpaces = metaSpaceOrder.filter((k) => newValue[k]);
--
2.47.0
2.47.1

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 842eb33b63bd69bf5714b10975f9e2fecc72ea66 Mon Sep 17 00:00:00 2001
From 520fdeb073a8247b2de0812cc4bc5c98ba776145 Mon Sep 17 00:00:00 2001
From: SpiritCroc <dev@spiritcroc.de>
Date: Wed, 29 May 2024 19:32:42 +0200
Subject: Squashed: Freeform reactions from tadzik/freeform-reactions-upstream
Expand Down Expand Up @@ -118,7 +118,7 @@ index e2470d188d..868f9b3d7c 100644
<Preview emoji={this.state.previewEmoji} />
) : (
diff --git a/src/components/views/emojipicker/ReactionPicker.tsx b/src/components/views/emojipicker/ReactionPicker.tsx
index b62df99e25..8291a38dc9 100644
index bd16634490..d70c3df6ec 100644
--- a/src/components/views/emojipicker/ReactionPicker.tsx
+++ b/src/components/views/emojipicker/ReactionPicker.tsx
@@ -126,6 +126,7 @@ class ReactionPicker extends React.Component<IProps, IState> {
Expand All @@ -130,5 +130,5 @@ index b62df99e25..8291a38dc9 100644
isEmojiDisabled={this.isEmojiDisabled}
onFinished={this.props.onFinished}
--
2.47.0
2.47.1

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 171a1d7ed3285bc96821986b655785b4a836270c Mon Sep 17 00:00:00 2001
From aee2a2d3082255bcceebab84b2f26ddf30a26c6d Mon Sep 17 00:00:00 2001
From: su-ex <codeworks@supercable.onl>
Date: Sat, 22 Apr 2023 12:15:18 +0200
Subject: Allow reactions to take more space
Expand Down Expand Up @@ -28,5 +28,5 @@ index dd9d7ddb47..9ebe95021e 100644
white-space: nowrap;
text-overflow: ellipsis;
--
2.47.0
2.47.1

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From df5c6698c294e898c375d2f57747cc99be35dfc7 Mon Sep 17 00:00:00 2001
From fd8e3a90d05471eeeab4de9a70feb0ab32276dd0 Mon Sep 17 00:00:00 2001
From: su-ex <codeworks@supercable.onl>
Date: Thu, 30 May 2024 14:35:16 +0200
Subject: On space switch don't automatically show last opened room
Expand All @@ -10,10 +10,10 @@ Subject: On space switch don't automatically show last opened room
3 files changed, 24 insertions(+), 1 deletion(-)

diff --git a/src/components/structures/MatrixChat.tsx b/src/components/structures/MatrixChat.tsx
index 9f9e225352..85a6400364 100644
index 548dbff983..6722975ce3 100644
--- a/src/components/structures/MatrixChat.tsx
+++ b/src/components/structures/MatrixChat.tsx
@@ -1454,7 +1454,15 @@ export default class MatrixChat extends React.PureComponent<IProps, IState> {
@@ -1450,7 +1450,15 @@ export default class MatrixChat extends React.PureComponent<IProps, IState> {
if (this.screenAfterLogin && this.screenAfterLogin.screen) {
this.showScreen(this.screenAfterLogin.screen, this.screenAfterLogin.params);
this.screenAfterLogin = undefined;
Expand All @@ -30,7 +30,7 @@ index 9f9e225352..85a6400364 100644
// Before defaulting to directory, show the last viewed room
this.viewLastRoom();
} else {
@@ -1466,6 +1474,14 @@ export default class MatrixChat extends React.PureComponent<IProps, IState> {
@@ -1462,6 +1470,14 @@ export default class MatrixChat extends React.PureComponent<IProps, IState> {
}
}

Expand All @@ -46,10 +46,10 @@ index 9f9e225352..85a6400364 100644
dis.dispatch<ViewRoomPayload>({
action: Action.ViewRoom,
diff --git a/src/settings/Settings.tsx b/src/settings/Settings.tsx
index 12d9965cf1..3e9fb95799 100644
index 3dcb64ced7..31ad386869 100644
--- a/src/settings/Settings.tsx
+++ b/src/settings/Settings.tsx
@@ -204,6 +204,12 @@ export const SETTINGS: { [setting: string]: ISetting } = {
@@ -195,6 +195,12 @@ export const SETTINGS: { [setting: string]: ISetting } = {
supportedLevels: LEVELS_ACCOUNT_SETTINGS,
default: true,
},
Expand All @@ -75,5 +75,5 @@ index 60df05478a..0be7ba190a 100644
cliSpace?.getMyMembership() !== KnownMembership.Invite &&
this.matrixClient.getRoom(roomId)?.getMyMembership() === KnownMembership.Join &&
--
2.47.0
2.47.1

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From e7747d12316e0d30bc8d152d71e636742c65eb0e Mon Sep 17 00:00:00 2001
From f2d5cbb7c31fc2a7ebd4a0f83c6e6c76b18c3668 Mon Sep 17 00:00:00 2001
From: SpiritCroc <dev@spiritcroc.de>
Date: Tue, 9 Aug 2022 09:32:19 +0200
Subject: Exclude spaces from breadcrumbs
Expand All @@ -20,5 +20,5 @@ index 9859f24015..957b54286c 100644
const rooms = (this.state.rooms || []).slice(); // cheap clone
const msc3946ProcessDynamicPredecessor = SettingsStore.getValue("feature_dynamic_room_predecessors");
--
2.47.0
2.47.1

6 changes: 3 additions & 3 deletions patches/element-web/0018-Stop-the-search-bar-wobble.patch
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 1868f42a8185a651ecdb8192c22eb8706707cc6f Mon Sep 17 00:00:00 2001
From 525ab32b51f86e6b81deaa6dd9048471e4959f97 Mon Sep 17 00:00:00 2001
From: SpiritCroc <dev@spiritcroc.de>
Date: Mon, 19 Aug 2024 20:27:33 +0200
Subject: Stop the search bar wobble
Expand All @@ -8,7 +8,7 @@ Subject: Stop the search bar wobble
1 file changed, 1 insertion(+)

diff --git a/res/css/_common.pcss b/res/css/_common.pcss
index 15ba02b6b8..f9bcd695ca 100644
index 74328af39b..f47afd8677 100644
--- a/res/css/_common.pcss
+++ b/res/css/_common.pcss
@@ -181,6 +181,7 @@ input[type="search"].mx_textinput_icon {
Expand All @@ -20,5 +20,5 @@ index 15ba02b6b8..f9bcd695ca 100644

/* FIXME THEME - Tint by CSS rather than referencing a duplicate asset */
--
2.47.0
2.47.1

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 9638fd0cc8c5a4318d6712bd9cbd9d603bf37fbf Mon Sep 17 00:00:00 2001
From a07dbddd3ccafdc96dbe0e17b442c55c0b08a2d7 Mon Sep 17 00:00:00 2001
From: SpiritCroc <dev@spiritcroc.de>
Date: Sun, 13 Oct 2024 11:23:54 +0200
Subject: Import SC compound theme overrides
Expand All @@ -8,7 +8,7 @@ Subject: Import SC compound theme overrides
1 file changed, 1 insertion(+)

diff --git a/res/css/_common.pcss b/res/css/_common.pcss
index f9bcd695ca..ad7c298820 100644
index f47afd8677..d8be5b1fba 100644
--- a/res/css/_common.pcss
+++ b/res/css/_common.pcss
@@ -11,6 +11,7 @@ Please see LICENSE files in the repository root for full details.
Expand All @@ -20,5 +20,5 @@ index f9bcd695ca..ad7c298820 100644
@import "./_animations.pcss";
@import "./_spacing.pcss";
--
2.47.0
2.47.1

Loading

0 comments on commit 240975c

Please sign in to comment.