Skip to content

Commit af6c40d

Browse files
committed
Merge remote-tracking branch 'upstream/master' into synodim
2 parents deb2b97 + 4a895f6 commit af6c40d

File tree

7 files changed

+496
-359
lines changed

7 files changed

+496
-359
lines changed

.github/workflows/end-to-end-tests.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
statuses: write
4646
runs-on: ubuntu-latest
4747
steps:
48-
- uses: Sibz/github-status-action@071b5370da85afbb16637d6eed8524a06bc2053e # v1
48+
- uses: Sibz/github-status-action@faaa4d96fecf273bd762985e0e7f9f933c774918 # v1
4949
with:
5050
authToken: "${{ secrets.GITHUB_TOKEN }}"
5151
state: success

CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
Changes in [1.11.65](https://github.com/element-hq/element-web/releases/tag/v1.11.65) (2024-04-23)
2+
==================================================================================================
3+
## ✨ Features
4+
5+
* Make empty state copy for TAC depend on the value of the setting ([#12419](https://github.com/matrix-org/matrix-react-sdk/pull/12419)). Contributed by @dbkr.
6+
* Linkify User Interactive Authentication errors ([#12271](https://github.com/matrix-org/matrix-react-sdk/pull/12271)). Contributed by @t3chguy.
7+
* Add support for device dehydration v2 ([#12316](https://github.com/matrix-org/matrix-react-sdk/pull/12316)). Contributed by @uhoreg.
8+
* Replace `SecurityCustomisations` with `CryptoSetupExtension` ([#12342](https://github.com/matrix-org/matrix-react-sdk/pull/12342)). Contributed by @thoraj.
9+
* Add activity toggle for TAC ([#12413](https://github.com/matrix-org/matrix-react-sdk/pull/12413)). Contributed by @dbkr.
10+
* Humanize spell check language labels ([#12409](https://github.com/matrix-org/matrix-react-sdk/pull/12409)). Contributed by @t3chguy.
11+
* Call Guest Access, give user the option to change the acces level so they can generate a call link. ([#12401](https://github.com/matrix-org/matrix-react-sdk/pull/12401)). Contributed by @toger5.
12+
* TAC: Release Announcement ([#12380](https://github.com/matrix-org/matrix-react-sdk/pull/12380)). Contributed by @florianduros.
13+
* Show the call and share button if the user can create a guest link. ([#12385](https://github.com/matrix-org/matrix-react-sdk/pull/12385)). Contributed by @toger5.
14+
* Add analytics for mark all threads unread ([#12384](https://github.com/matrix-org/matrix-react-sdk/pull/12384)). Contributed by @dbkr.
15+
* Add `EventType.RoomEncryption` to the auto approve capabilities of Element Call widgets ([#12386](https://github.com/matrix-org/matrix-react-sdk/pull/12386)). Contributed by @toger5.
16+
17+
## 🐛 Bug Fixes
18+
19+
* Fix link modal not shown after access upgrade ([#12411](https://github.com/matrix-org/matrix-react-sdk/pull/12411)). Contributed by @toger5.
20+
* Fix thread navigation in timeline ([#12412](https://github.com/matrix-org/matrix-react-sdk/pull/12412)). Contributed by @florianduros.
21+
* Fix inability to join a `knock` room via space hierarchy view ([#12404](https://github.com/matrix-org/matrix-react-sdk/pull/12404)). Contributed by @t3chguy.
22+
* Focus the thread panel when clicking on an item in the TAC ([#12410](https://github.com/matrix-org/matrix-react-sdk/pull/12410)). Contributed by @dbkr.
23+
* Fix space hierarchy tile busy state being stuck after join error ([#12405](https://github.com/matrix-org/matrix-react-sdk/pull/12405)). Contributed by @t3chguy.
24+
* Fix room topic in-app links not being handled correctly on topic dialog ([#12406](https://github.com/matrix-org/matrix-react-sdk/pull/12406)). Contributed by @t3chguy.
25+
26+
27+
128
Changes in [1.11.64](https://github.com/element-hq/element-web/releases/tag/v1.11.64) (2024-04-09)
229
==================================================================================================
330
## ✨ Features

docs/translating.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,9 @@
1414

1515
## How to check if your language already is being translated
1616

17-
Go to https://localazy.com/p/element-web
18-
If your language is listed then you can get started, have a read of https://localazy.com/docs/general/translating-strings
19-
if you need help getting started. If your language is not yet listed please express your wishes to start translating it in
20-
the general discussion room linked above.
17+
Go to https://localazy.com/p/element-web. If your language is listed then you can get started. Have a read
18+
of https://localazy.com/docs/general/translating-strings if you need help getting started. If your language is not yet
19+
listed please express your wishes to start translating it in the general discussion room linked above.
2120

2221
### What are `%(something)s`?
2322

element.io/app/config.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,8 @@
4343
"api_host": "https://posthog.element.io"
4444
},
4545
"privacy_policy_url": "https://element.io/cookie-policy",
46-
"map_style_url": "https://api.maptiler.com/maps/streets/style.json?key=fU3vlMsMn4Jb6dnEIFsx"
46+
"map_style_url": "https://api.maptiler.com/maps/streets/style.json?key=fU3vlMsMn4Jb6dnEIFsx",
47+
"setting_defaults": {
48+
"RustCrypto.staged_rollout_percent": 10
49+
}
4750
}

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "element-web",
3-
"version": "1.11.64",
3+
"version": "1.11.65",
44
"description": "A feature-rich client for Matrix.org",
55
"author": "New Vector Ltd.",
66
"repository": {
@@ -77,8 +77,8 @@
7777
"jsrsasign": "^11.0.0",
7878
"katex": "^0.16.0",
7979
"lodash": "^4.17.21",
80-
"matrix-js-sdk": "32.0.0",
81-
"matrix-react-sdk": "3.97.0",
80+
"matrix-js-sdk": "32.1.0",
81+
"matrix-react-sdk": "3.98.0",
8282
"matrix-widget-api": "^1.3.1",
8383
"react": "17.0.2",
8484
"react-dom": "17.0.2",
@@ -199,7 +199,7 @@
199199
"terser-webpack-plugin": "^5.3.9",
200200
"ts-node": "^10.9.1",
201201
"ts-prune": "^0.10.3",
202-
"typescript": "5.4.2",
202+
"typescript": "5.4.3",
203203
"util": "^0.12.5",
204204
"webpack": "^5.89.0",
205205
"webpack-bundle-analyzer": "^4.8.0",

src/vector/platform/ElectronPlatform.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,8 @@ export default class ElectronPlatform extends VectorBasePlatform {
170170
window.electron.on("openDesktopCapturerSourcePicker", () => {
171171
const { finished } = Modal.createDialog(DesktopCapturerSourcePicker);
172172
finished.then(([source]) => {
173-
if (!source) return;
174-
this.ipc.call("callDisplayMediaCallback", source);
173+
// getDisplayMedia promise does not return if no dummy is passed here as source
174+
this.ipc.call("callDisplayMediaCallback", source ?? { id: "", name: "", thumbnailURL: "" });
175175
});
176176
});
177177

0 commit comments

Comments
 (0)